home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Graphics / PostScript / EnhancedYap / Source / YapApp.h < prev    next >
Encoding:
Text File  |  1995-06-12  |  699 b   |  37 lines

  1. #import <appkit/Application.h>
  2.  
  3. @interface YapApp : Application
  4. {
  5.     id outputView;
  6.     id infoPanel;
  7.     id helpPanel;
  8.     id prefsPanel;
  9.     id findObject;
  10.     id outputWidthField;
  11.     id outputHeightField;
  12.     id showCacheButton;
  13.     id clearCacheButton;
  14. }
  15.  
  16. - showInfo:sender;
  17. - showHelp:sender;
  18. - showPrefs:sender;
  19.  
  20. - newDocument:sender;
  21. - openDocument:sender;
  22.  
  23. - (int)app:app openFile:(const char *)path type:(const char *)type;
  24. - (BOOL)appAcceptsAnotherFile:sender;
  25. - appDidInit:sender;
  26.  
  27. - updateOutputWindowSize;
  28.  
  29. - outputView;
  30. - outputWindow;
  31.  
  32. - updatePreferencesPanel:sender;
  33. - okPreferencesPanel:sender;
  34. - yapSelection:pasteboard userData:(const char *)userData error:(char **)msg;
  35.  
  36. @end
  37.